home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 29 / PC Gamer IT CD 29 2-2.iso / FM98DEMO / 98PATCH / PATCH.FIL < prev    next >
Text File  |  1998-01-05  |  3KB  |  156 lines

  1. ' *****************************************
  2. ' **** Football Masters Install Script ****
  3. ' *****************************************
  4. '
  5. ' (Use "pkzip -ex -rP fmpatch.zip" to create archive)
  6.  
  7. BACKGROUND 127
  8. LANGUAGE ENGLISH
  9. BORDER 0
  10. TELESCOPE OFF
  11. WINOPEN 0 2 30
  12.  
  13. "        Football Masters        "
  14. "           Patch Disk           "
  15. "          version 8.02          "
  16. ""
  17. "          ESP Software"
  18. "      14th of December 1997"
  19.  
  20. ' ******************************
  21. ' **** Input Drive and Path ****
  22. ' ******************************
  23.  
  24.  
  25. WINOPEN 0 12 95
  26. "This patch needs to be installed to your"
  27. "   current FOOTBALL MASTERS directory. "
  28. ""
  29. "    Press the [Enter] key to continue  "
  30. 'WAIT 57 12
  31. WAIT +39 +4
  32. WINCLOSE
  33.  
  34. :START
  35.  
  36. SPACE 2000
  37. DRIVE C 0 12 127 112 0 18 95
  38. PATH \FM98 0 12 127 112 0 18 95
  39.  
  40.  
  41. ' ***************************
  42. ' **** Check for FM97.EXE ****
  43. ' ***************************
  44. '
  45. EXIST ~1~2\FM98.EXE
  46. JUMP.YES CONFIRM
  47. JUMP.NO ASK_CONTINUE
  48. 'If no then ask to continue or restart.
  49.  
  50. :ASK_CONTINUE
  51. WINOPEN 0 12 95
  52. "This does not appear to be a valid Football Masters"
  53. "directory. Do you want to continue?"
  54. ""
  55. ""
  56. ""
  57. "Press [Y] to continue or [N] to start again."
  58.  
  59. WINUPDATE +4 +4 94
  60. "~1~2."
  61. ASK +46 +6
  62. WINCLOSE
  63. JUMP.NO START
  64. JUMP.YES DO_PATCH
  65.  
  66. ' *****************
  67. ' **** Confirm ****
  68. ' *****************
  69. '
  70. :CONFIRM
  71. WINOPEN 0 12 95
  72. "Football Masters 98 will now be updated."
  73. ""
  74. ""
  75. ""
  76. "Press [Y] to continue or [N] to start again."
  77.  
  78. WINUPDATE +4 +3 94
  79. "~1~2."
  80. ASK +46 +5
  81. WINCLOSE
  82. JUMP.NO START
  83.  
  84. :DO_PATCH
  85. ' **************************
  86. ' **** Copy Patch Files ****
  87. ' **************************
  88. '''''''
  89. 'Extract (restore directory structure and overwriting existing files)
  90. SHELL
  91. "pkunzip -d -o ~0\fmpatch.zip ~1~2\"
  92.  
  93. 'fm7
  94. 'DELETE ~1~2\kits\6\pspbrwse.jbf 23 10 127
  95.  
  96. 'sort out wrong stadium names installed on HD
  97. EXIST ~1~2\stadiums\6\107.pcx
  98. JUMP.NO NEXTSTADIUM
  99. COPY ~1~2\stadiums\6\107.pcx ~1~2\stadiums\6\111.pcx 23 10 127
  100. DELETE ~1~2\stadiums\6\107.pcx 23 10 127
  101. EXIST ~1~2\stadiums\10\111.pcx
  102. :NEXTSTADIUM
  103. JUMP.NO HELP_BATCH
  104. COPY ~1~2\stadiums\10\111.pcx ~1~2\stadiums\10\79.pcx 23 10 127
  105. DELETE ~1~2\stadiums\10\111.pcx 23 10 127
  106.  
  107. :HELP_BATCH
  108.  
  109. EXIST ~1\FM_Help.BAT
  110. JUMP.YES SUCCESS
  111.  
  112. FILE ~1~2\FM_Help.BAT
  113. "@~1"
  114. "@cd ~2"
  115. "@cls"
  116. "@echo."
  117. "@echo  To start Football Masters, type"
  118. "@echo."
  119. "@echo      FM"
  120. "@echo."
  121. "@echo  and press ENTER."
  122. "@echo."
  123.  
  124. :GO_BATCH
  125.  
  126. EXIST ~1\FM.BAT
  127. JUMP.YES SUCCESS
  128.  
  129. FILE ~1\FM.BAT
  130. "@~1"
  131. "@cd ~2"
  132. "@FM.BAT %1"
  133.  
  134. ' *****************
  135. ' **** Success ****
  136. ' *****************
  137.  
  138. :SUCCESS
  139.  
  140. WINOPEN 0 12 95
  141.  
  142. "Football Masters 98 has been updated"
  143. "successfully in the directory"
  144. ""
  145. ""
  146. ""
  147. "Press the [Enter] key to continue."
  148.  
  149. WINUPDATE +4 +4 94
  150. "~1~2."
  151. WAIT +36 +6
  152. WINCLOSE
  153.  
  154. RUN ~1~2\FM_Help.BAT
  155. END
  156.